Syntax:
set mylist = the Imagelist of member whichcastmember
Purpose:
This property is used to get informations about all images in the html source
of the #html cast member.
This allows to place bitmap castmembers at the desired position via Lingo.
Instead of the Images the xtra will show white space with the size
of the Image, defined by the WIDTH and HEIGHT parameter
Images are defined in HMTL via
<IMG SRC="Image1" WIDTH=30 HEIGHT=30>
The returned list is a list of lists. mylist (above example) is
a list of all parsed Image tags. Each item of this list is a list with
five elements, the first one is the value of the HREF parameter, the
second one is the horizontal position as currently rendered, the third parameter
is the vertical scrollposition as currently rendered and the last two parameters
contains the values of the WIDTH and HEIGHT parameters. These values are
strings. As example put the Imagelist of member "html" would give a result
like:
[ ["Image1",xpos1, ypos1, width1, height1],
["Image2",xpos2, ypos2, width2, height2] ]
This property can be tested, but not set.
Notes:
See also: